third-party-prc-api
Loyalty Gain Points
Description: This service is used to get add points.
Channel sends the request to mulesoft. Mulesoft will send the request to Loyalty sys api and get back the result.
A response is sent back to the channel immediately. If it fails due to any reason, a proper error is sent back to the API consuming channel to both REST using the error codes defined.
Mulesoft Request:
Headers:
Mandatory Headers: x-correlation-id, client_id, client_secret, x-channel-id, x-bank-id
Optional Headers: x-sub-channel-id, x-user-id, x-debug-flag, x-customer-id, Authorization
Paramaters:
URI Params: {customerId}
Query Params: NA
Content-type: application/json
JSON Request:
{
"eventKey": "steps",
"customerId": "2057612",
"points": 1200
}
Mulesoft Response:
Success Response: (200)
{
"status":
{
"success": true,
"code": "200",
"arabicMessage": "تمت العملية بنجاØ",
"englishMessage": "The Operation has been Successfully Completed"
}
}
Sample Error Response:
400 :
{
"status": {
"success": false,
"code": "400",
"reasonCode": "BadRequest",
"arabicMessage": "لم يتم العثور على سجلات تطابق Ù…Øددات البØØ«",
"englishMessage": "No records were found",
"backendError": "No records were found",
"backendCode": "-100"
}
}